* {
    outline: none !important;
}

/* ============================================
   WIMS THEME VARIABLES & ENHANCEMENTS
   ============================================ */
:root {
    --wims-primary: #2a5298;
    --wims-primary-dark: #1e3c72;
    --wims-bg-dark: #0f0c29;
    --wims-bg-purple: #302b63;
    --wims-bg-navy: #24243e;
    --wims-bg-deep: #1a1a2e;
    --wims-text-light: rgba(255, 255, 255, 0.9);
    --wims-text-muted: rgba(255, 255, 255, 0.6);
    
    /* Light Mode Variables */
    --wims-light-primary: #667eea;
    --wims-light-primary-dark: #5a67d8;
    --wims-light-bg: #f7fafc;
    --wims-light-bg-alt: #edf2f7;
    --wims-light-text: #2d3748;
    --wims-light-text-muted: #718096;
    --wims-light-border: #e2e8f0;
}

/* ============================================
   LIGHT MODE - BUTTON OVERRIDES
   ============================================ */
.light-mode .btn-default {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    color: #4a5568;
    border-color: #e2e8f0;
}

.light-mode .btn-default:hover,
.light-mode .btn-default:focus {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: #2d3748;
    border-color: #cbd5e0;
}

.text-white {
    color: var(--wims-text-light) !important;
}
.text-light{
    color: var(--wims-text-muted) !important;
}
/* ============================================
   BUTTONS - WIMS THEME
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--wims-primary) 0%, var(--wims-primary-dark) 100%);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
    transform: translateY(-1px);
}

.btn-default {
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    color: #fff;
    border-color: rgba(42, 82, 152, 0.3);
    transition: all 0.3s ease;
}

.btn-default:hover,
.btn-default:focus {
    background: linear-gradient(135deg, var(--wims-bg-purple) 0%, var(--wims-bg-navy) 100%);
    color: #fff;
    border-color: var(--wims-primary);
}

.btn-success {
    background: linear-gradient(135deg, #1a8754 0%, #28a745 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #28a745 0%, #1a8754 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, #d39e00 0%, #ffc107 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffc107 0%, #d39e00 100%);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, #117a8b 0%, #17a2b8 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    color: #fff;
    border-color: rgba(42, 82, 152, 0.3);
    transition: all 0.3s ease;
}

.btn-info:hover {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

/* ============================================
BOX & CARD STYLES - WIMS THEME
============================================ */
.box {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(42, 82, 152, 0.3);
    overflow: hidden;
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    color: rgba(255, 255, 255, 0.9);
}

.box-body {
    color: rgba(255, 255, 255, 0.9);
}

.box-header {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    color: #fff;
    border-bottom: none;
    padding: 15px 20px;
}

.box-header .box-title {
    color: #fff;
    font-weight: 600;
}

.box-header .box-tools .btn {
    color: #ffffff;
}

.box-header.with-border {
    border-bottom: 1px solid rgba(42, 82, 152, 0.3);
}

.box-primary {
    border-top: 3px solid var(--wims-primary);
}

.box-primary > .box-header {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
}

.box-info {
    border-top: 3px solid #17a2b8;
}

.box-success {
    border-top: 3px solid #28a745;
}

.box-warning {
    border-top: 3px solid #ffc107;
}

.box-danger {
    border-top: 3px solid #dc3545;
}

/* ============================================
   INFO BOX - WIMS THEME
   ============================================ */
.info-box {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-box-icon {
    border-radius: 10px 0 0 10px;
}

.bg-aqua, .bg-info {
    background: linear-gradient(135deg, #117a8b 0%, #17a2b8 100%) !important;
}

.bg-green, .bg-success {
    background: linear-gradient(135deg, #1a8754 0%, #28a745 100%) !important;
}

.bg-yellow, .bg-warning {
    background: linear-gradient(135deg, #d39e00 0%, #ffc107 100%) !important;
}

.bg-red, .bg-danger {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%) !important;
}

.bg-purple {
    background: linear-gradient(135deg, var(--wims-bg-purple) 0%, var(--wims-primary) 100%) !important;
}

.bg-blue, .bg-primary {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%) !important;
}

/* ============================================
   MODAL - WIMS THEME
   ============================================ */
.modal-content {
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    border: 1px solid rgba(42, 82, 152, 0.3);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-header {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
}

.modal-header .modal-title {
    color: #fff;
    font-weight: 600;
}

.modal-header .close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    color: var(--wims-text-light);
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid rgba(42, 82, 152, 0.2);
    border-radius: 0 0 15px 15px;
    padding: 15px 25px;
}

/* ============================================
   TABLE - WIMS THEME
   ============================================ */
.bg-transparent {
    background-color: transparent !important;
}

.table {
    color: rgba(255, 255, 255, 0.9);
}

.table > thead > tr > th {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    color: #fff;
    border-bottom: none;
    font-weight: 600;
    padding: 12px 15px;
}

.table > thead > tr > td {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    color: #fff;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(42, 82, 152, 0.15);
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.1);
}

.table-hover > tbody > tr:hover {
    background-color: rgba(42, 82, 152, 0.25);
}

.table > tbody > tr > td {
    vertical-align: middle;
    border-top: 1px solid rgba(42, 82, 152, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.table-bordered {
    border: 1px solid rgba(42, 82, 152, 0.3);
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td {
    border: 1px solid rgba(42, 82, 152, 0.2);
}

/* ============================================
   FORM CONTROLS - WIMS THEME
   ============================================ */
.form-control {
    border-radius: 8px;
    border: 1px solid rgba(42, 82, 152, 0.3);
    /* padding: 10px 15px; */
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-control:focus {
    border-color: var(--wims-primary);
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Input and Select text color */
input.form-control,
textarea.form-control,
select.form-control {
    color: #ffffff;
}

/* Labels */
label {
    color: rgba(255, 255, 255, 0.9);
}

/* Modal form controls */
.modal-body .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(42, 82, 152, 0.3);
    color: #fff;
}

.modal-body .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--wims-primary);
    color: #fff;
}

.modal-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-body label {
    color: var(--wims-text-light);
}

/* ============================================
   SELECT FIX - SHOW FULL TEXT
   ============================================ */
select.form-control,
select.btn,
.btn.dropdown-toggle {
    min-width: 120px;
    max-width: 100%;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 30px !important;
}

/* Select with full width in forms */
.form-group select.form-control,
.col-xs-4 select.form-control,
.col-xs-6 select.form-control,
.col-md-3 select.form-control,
.col-md-4 select.form-control {
    width: 100% !important;
}

/* Dropdown button text fix */
.dropdown-toggle[text-jop] {
    min-width: 150px;
    max-width: 200px;
    text-align: left;
    position: relative;
}

.dropdown-toggle[text-jop]::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Select option styling */
select option {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 10px 15px;
}

/* ============================================
   TAP-BOX STYLING
   ============================================ */
.tap-box {
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(42, 82, 152, 0.3);
    overflow: hidden;
}

/* ============================================
   NAV-TABS-CUSTOM IN TAP-BOX
   ============================================ */
.tap-box .nav-tabs-custom {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
}

.tap-box .nav-tabs-custom > .nav-tabs {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    border-bottom: none;
}

.tap-box .nav-tabs-custom > .nav-tabs > li > a {
    color: rgba(255, 255, 255, 0.8);
    border: none;
    transition: all 0.3s ease;
}

.tap-box .nav-tabs-custom > .nav-tabs > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.tap-box .nav-tabs-custom > .nav-tabs > li.active > a {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
}

.tap-box .nav-tabs-custom > .nav-tabs > li.header {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.tap-box .nav-tabs-custom > .tab-content {
    background: transparent;
    padding: 15px;
}

/* ============================================
   CONTENT HEADER TITLE
   ============================================ */
.content-header h1,
.content-header h2 {
    color: #ffffff;
}

.content-header h1 small,
.content-header h2 small {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PAGINATION - WIMS THEME
   ============================================ */
.pagination > li > a,
.pagination > li > span {
    color: var(--wims-primary);
    border: 1px solid rgba(42, 82, 152, 0.2);
    margin: 0 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination > li > a:hover,
.pagination > li > span:hover {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    color: #fff;
    border-color: var(--wims-primary);
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    border-color: var(--wims-primary);
}

/* ============================================
   LABELS & BADGES - WIMS THEME
   ============================================ */
.label-primary {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
}

.label-success {
    background: linear-gradient(135deg, #1a8754 0%, #28a745 100%);
}

.label-info {
    background: linear-gradient(135deg, #117a8b 0%, #17a2b8 100%);
}

.label-warning {
    background: linear-gradient(135deg, #d39e00 0%, #ffc107 100%);
}

.label-danger {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
}

/* ============================================
   NAV TABS - WIMS THEME  
   ============================================ */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    color: #fff;
    border: none;
    border-radius: 5px 5px 0 0;
}

.nav-tabs > li > a {
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs > li > a:hover {
    background: rgba(42, 82, 152, 0.1);
    border-color: transparent;
}

/* ============================================
   ALERT - WIMS THEME
   ============================================ */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(40, 167, 69, 0.1) 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.15) 0%, rgba(23, 162, 184, 0.1) 100%);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.1) 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ============================================
   PROGRESS BAR - WIMS THEME
   ============================================ */
.progress {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
}

.progress-bar-success {
    background: linear-gradient(135deg, #1a8754 0%, #28a745 100%);
}

.progress-bar-info {
    background: linear-gradient(135deg, #117a8b 0%, #17a2b8 100%);
}

.progress-bar-warning {
    background: linear-gradient(135deg, #d39e00 0%, #ffc107 100%);
}

.progress-bar-danger {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
}

/* ============================================
   CALLOUT - WIMS THEME
   ============================================ */
.callout {
    border-radius: 10px;
    border-left-width: 5px;
}

.callout.callout-info {
    border-left-color: var(--wims-primary);
    background: rgba(42, 82, 152, 0.1);
}

/* ============================================
   SMALL BOX / WIDGET - WIMS THEME
   ============================================ */
.small-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.small-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.small-box > .small-box-footer {
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.small-box:hover > .small-box-footer {
    background: rgba(0, 0, 0, 0.2);
}

/* ============================================
   DROPDOWN - WIMS THEME
   ============================================ */
.dropdown-menu {
    border-radius: 10px;
    border: 1px solid rgba(42, 82, 152, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.dropdown-menu > li > a {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-menu > li > a:hover {
    background: linear-gradient(90deg, rgba(42, 82, 152, 0.1) 0%, transparent 100%);
    color: var(--wims-primary);
}

/* ============================================
   CUSTOM NEO TAG
   ============================================ */
neo {
    color: #4fd1c5;
    text-shadow: 0 0 10px rgba(79, 209, 197, 0.3);
}

err {
    color: #fc8181;
    text-shadow: 0 0 10px rgba(252, 129, 129, 0.3);
}

/* ============================================
   UTILITY CLASSES (Bootstrap 4 Compatible)
   ============================================ */
.table .table {
    background-color: transparent !important;
}

.pagination {
    margin: 0px !important;
}

.spacer {
    width: -webkit-fill-available;
}

.modal-title {
    white-space: nowrap !important;
}

.d-flex {
    display: flex;
}

.input-group {
    display: flex !important;
}

div.input-group-append>button {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.m-0 { margin: 0 !important; }
.m-1 { margin: .25rem !important; }
.m-2 { margin: .5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }

.mt-1 { margin-top: .25rem !important; }
.mr-1 { margin-right: .25rem !important; }
.mb-1 { margin-bottom: .25rem !important; }
.ml-1 { margin-left: .25rem !important; }
.mx-1 { margin-left: .25rem !important; margin-right: .25rem !important; }
.my-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }

.mt-2 { margin-top: .5rem !important; }
.mr-2 { margin-right: .5rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.ml-2 { margin-left: .5rem !important; }
.mx-2 { margin-right: .5rem !important; margin-left: .5rem !important; }
.my-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }

.mt-3 { margin-top: 1rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.ml-3 { margin-left: 1rem !important; }
.mx-3 { margin-right: 1rem !important; margin-left: 1rem !important; }
.my-3 { margin-bottom: 1rem !important; margin-top: 1rem !important; }

.mt-4 { margin-top: 1.5rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.mx-4 { margin-right: 1.5rem !important; margin-left: 1.5rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }

.mt-5 { margin-top: 3rem !important; }
.mr-5 { margin-right: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ml-5 { margin-left: 3rem !important; }
.mx-5 { margin-right: 3rem !important; margin-left: 3rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.mt-auto { margin-top: auto !important; }
.mr-auto { margin-right: auto !important; }
.mb-auto { margin-bottom: auto !important; }
.ml-auto { margin-left: auto !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.my-auto { margin-bottom: auto !important; margin-top: auto !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: .25rem !important; }
.p-2 { padding: .5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }

.pt-1 { padding-top: .25rem !important; }
.pr-1 { padding-right: .25rem !important; }
.pb-1 { padding-bottom: .25rem !important; }
.pl-1 { padding-left: .25rem !important; }
.px-1 { padding-left: .25rem !important; padding-right: .25rem !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }

.pt-2 { padding-top: .5rem !important; }
.pr-2 { padding-right: .5rem !important; }
.pb-2 { padding-bottom: .5rem !important; }
.pl-2 { padding-left: .5rem !important; }
.px-2 { padding-right: .5rem !important; padding-left: .5rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }

.pt-3 { padding-top: 1rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pl-3 { padding-left: 1rem !important; }
.py-3 { padding-bottom: 1rem !important; padding-top: 1rem !important; }
.px-3 { padding-right: 1rem !important; padding-left: 1rem !important; }

.pt-4 { padding-top: 1.5rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.px-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

.pt-5 { padding-top: 3rem !important; }
.pr-5 { padding-right: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.pl-5 { padding-left: 3rem !important; }
.px-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* ============================================
   LEGACY & CUSTOM STYLES
   ============================================ */
.btn-app {
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    border: 1px solid rgba(42, 82, 152, 0.3);
    transition: all 0.3s ease;
}

.btn-app:hover {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
    border-color: var(--wims-primary);
}

input, select {
    color: #ffffff;
}

th {
    vertical-align: middle;
    text-align: center;
}

td {
    font-size: 14px;
}

p.head {
    white-space: nowrap;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-box-right {
    float: right;
}

.full-width-btn {
    width: 100%;
}

.errorBorder {
    border: 3px solid #e67e22;
    border-radius: 8px;
}

.limittx {
    width: 9em;
    word-wrap: break-word;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

p.destx {
    width: 20em;
    height: 38px;
    font-size: 13px;
    word-wrap: break-word;
    text-align: left;
    overflow-y: hidden;
    text-overflow: ellipsis;
}

p.destx:hover {
    width: 20em;
    font-size: 13px;
    word-wrap: break-word;
    text-align: left;
    overflow-y: auto;
    word-spacing: 3px;
}

.bnext {
    float: left;
}

input.num-in {
    width: 80px;
}

div.takeTo {
    padding: 5px;
}

select.fit {
    width: 100%;
    height: 300px;
    overflow-y: auto;
}

p.log {
    line-height: 20px;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre-wrap;
    min-width: 20em;
    font-size: 13px;
    text-align: left;
    padding: 3px;
}

p.item:hover {
    line-height: 20px;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre-wrap;
    min-width: 20em;
    max-height: 5em;
    font-size: 13px;
    text-align: left;
    padding: 3px;
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    overflow-y: auto;
    border-radius: 5px;
}

p.item {
    line-height: 20px;
    word-break: break-all;
    word-wrap: normal;
    white-space: pre-wrap;
    min-width: 20em;
    max-height: 5em;
    font-size: 13px;
    text-align: left;
    padding: 3px;
    overflow: hidden;
}

.crop {
    width: 80px;
    height: 50px;
    overflow: hidden;
    border-radius: 5px;
}

select {
    height: 34px;
}

.img-close {
    top: 1%;
    right: 1%;
    font-size: 20px;
}

@media (max-width: 767px) {
    .filter-fly {
        position: fixed;
        top: 102px;
        right: 2px;
    }
}

@media (min-width: 767px) {
    .filter-fly {
        position: fixed;
        top: 52px;
        right: 2px;
    }
}

div.sum {
    white-space: nowrap;
    width: 15em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btnown {
    white-space: nowrap;
    width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0px;
}

hr {
    margin: 0px;
    border-color: rgba(42, 82, 152, 0.2);
}

hr.fihr {
    margin: 5px;
}

.dtail {
    width: 240px;
}

.edit {
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
    border-color: rgba(42, 82, 152, 0.3);
    color: var(--wims-text-light);
    border-radius: 5px;
}

.edit:hover {
    background: linear-gradient(135deg, var(--wims-primary-dark) 0%, var(--wims-primary) 100%);
}

.btn-file {
    position: absolute;
    overflow: hidden;
    width: 30px;
    opacity: 0;
}

.tap-box {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wims-bg-navy) 0%, var(--wims-bg-deep) 100%);
}

.info-box-text {
    color: #ffffff;
    font-weight: bold;
}

.info-box-content {
    text-align: center;
}

.info-box-number {
    color: #ffffff;
}

.info-box-ex {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    width: 1em;
    overflow: hidden;
    word-break: break-all;
}

.sc {
    padding-right: 5px;
    padding-left: 5px;
}

/* ============================================
   FONTAWESOME SVG SUPPORT
   ============================================ */
svg:not(:root).svg-inline--fa {
    overflow: visible
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em
}

.svg-inline--fa.fa-lg { vertical-align: -.225em }
.svg-inline--fa.fa-w-1 { width: .0625em }
.svg-inline--fa.fa-w-2 { width: .125em }
.svg-inline--fa.fa-w-3 { width: .1875em }
.svg-inline--fa.fa-w-4 { width: .25em }
.svg-inline--fa.fa-w-5 { width: .3125em }
.svg-inline--fa.fa-w-6 { width: .375em }
.svg-inline--fa.fa-w-7 { width: .4375em }
.svg-inline--fa.fa-w-8 { width: .5em }
.svg-inline--fa.fa-w-9 { width: .5625em }
.svg-inline--fa.fa-w-10 { width: .625em }
.svg-inline--fa.fa-w-11 { width: .6875em }
.svg-inline--fa.fa-w-12 { width: .75em }
.svg-inline--fa.fa-w-13 { width: .8125em }
.svg-inline--fa.fa-w-14 { width: .875em }
.svg-inline--fa.fa-w-15 { width: .9375em }
.svg-inline--fa.fa-w-16 { width: 1em }
.svg-inline--fa.fa-w-17 { width: 1.0625em }
.svg-inline--fa.fa-w-18 { width: 1.125em }
.svg-inline--fa.fa-w-19 { width: 1.1875em }
.svg-inline--fa.fa-w-20 { width: 1.25em }

.svg-inline--fa.fa-pull-left { margin-right: .3em; width: auto }
.svg-inline--fa.fa-pull-right { margin-left: .3em; width: auto }
.svg-inline--fa.fa-border { height: 1.5em }
.svg-inline--fa.fa-li { width: 2em }
.svg-inline--fa.fa-fw { width: 1.25em }

.fa-layers svg.svg-inline--fa {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0
}

.fa-layers {
    display: inline-block;
    height: 1em;
    position: relative;
    text-align: center;
    vertical-align: -.125em;
    width: 1em
}

.fa-layers svg.svg-inline--fa {
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.fa-layers-counter, .fa-layers-text {
    display: inline-block;
    position: absolute;
    text-align: center
}

.fa-layers-text {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.fa-layers-counter {
    background-color: #ff253a;
    border-radius: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    height: 1.5em;
    line-height: 1;
    max-width: 5em;
    min-width: 1.5em;
    overflow: hidden;
    padding: .25em;
    right: 0;
    text-overflow: ellipsis;
    top: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: top right;
    transform-origin: top right
}

.fa-layers-bottom-right {
    bottom: 0;
    right: 0;
    top: auto;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right
}

.fa-layers-bottom-left {
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left
}

.fa-layers-top-right {
    right: 0;
    top: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: top right;
    transform-origin: top right
}

.fa-layers-top-left {
    left: 0;
    right: auto;
    top: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: top left;
    transform-origin: top left
}

.fa-lg { font-size: 1.3333333333em; line-height: .75em; vertical-align: -.0667em }
.fa-xs { font-size: .75em }
.fa-sm { font-size: .875em }
.fa-1x { font-size: 1em }
.fa-2x { font-size: 2em }
.fa-3x { font-size: 3em }
.fa-4x { font-size: 4em }
.fa-5x { font-size: 5em }
.fa-6x { font-size: 6em }
.fa-7x { font-size: 7em }
.fa-8x { font-size: 8em }
.fa-9x { font-size: 9em }
.fa-10x { font-size: 10em }

.fa-fw { text-align: center; width: 1.25em }

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li { position: relative }

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: solid .08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left { float: left }
.fa-pull-right { float: right }

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left { margin-right: .3em }
.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right { margin-left: .3em }

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% { -webkit-transform: rotate(0); transform: rotate(0) }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) }
}

@keyframes fa-spin {
    0% { -webkit-transform: rotate(0); transform: rotate(0) }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) }
}

.fa-rotate-90 { -webkit-transform: rotate(90deg); transform: rotate(90deg) }
.fa-rotate-180 { -webkit-transform: rotate(180deg); transform: rotate(180deg) }
.fa-rotate-270 { -webkit-transform: rotate(270deg); transform: rotate(270deg) }
.fa-flip-horizontal { -webkit-transform: scale(-1, 1); transform: scale(-1, 1) }
.fa-flip-vertical { -webkit-transform: scale(1, -1); transform: scale(1, -1) }
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical { -webkit-transform: scale(-1, -1); transform: scale(-1, -1) }

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    position: relative;
    width: 2.5em
}

.fa-stack-1x, .fa-stack-2x {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0
}

.svg-inline--fa.fa-stack-1x { height: 1em; width: 1.25em }
.svg-inline--fa.fa-stack-2x { height: 2em; width: 2.5em }

.fa-inverse { color: #fff }

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

.svg-inline--fa .fa-primary {
    fill: var(--fa-primary-color, currentColor);
    opacity: 1;
    opacity: var(--fa-primary-opacity, 1)
}

.svg-inline--fa .fa-secondary {
    fill: var(--fa-secondary-color, currentColor);
    opacity: .4;
    opacity: var(--fa-secondary-opacity, .4)
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
    opacity: .4;
    opacity: var(--fa-secondary-opacity, .4)
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
    opacity: 1;
    opacity: var(--fa-primary-opacity, 1)
}

.svg-inline--fa mask .fa-primary, .svg-inline--fa mask .fa-secondary { fill: #000 }

.fad.fa-inverse { color: #fff }

.knob-label { color: #fff }

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em
}

.svg-inline--fa.fa-lg {
    vertical-align: -.225em
}

.svg-inline--fa.fa-w-1 {
    width: .0625em
}

.svg-inline--fa.fa-w-2 {
    width: .125em
}

.svg-inline--fa.fa-w-3 {
    width: .1875em
}

.svg-inline--fa.fa-w-4 {
    width: .25em
}

.svg-inline--fa.fa-w-5 {
    width: .3125em
}

.svg-inline--fa.fa-w-6 {
    width: .375em
}

.svg-inline--fa.fa-w-7 {
    width: .4375em
}

.svg-inline--fa.fa-w-8 {
    width: .5em
}

.svg-inline--fa.fa-w-9 {
    width: .5625em
}

.svg-inline--fa.fa-w-10 {
    width: .625em
}

.svg-inline--fa.fa-w-11 {
    width: .6875em
}

.svg-inline--fa.fa-w-12 {
    width: .75em
}

.svg-inline--fa.fa-w-13 {
    width: .8125em
}

.svg-inline--fa.fa-w-14 {
    width: .875em
}

.svg-inline--fa.fa-w-15 {
    width: .9375em
}

.svg-inline--fa.fa-w-16 {
    width: 1em
}

.svg-inline--fa.fa-w-17 {
    width: 1.0625em
}

.svg-inline--fa.fa-w-18 {
    width: 1.125em
}

.svg-inline--fa.fa-w-19 {
    width: 1.1875em
}

.svg-inline--fa.fa-w-20 {
    width: 1.25em
}

.svg-inline--fa.fa-pull-left {
    margin-right: .3em;
    width: auto
}

.svg-inline--fa.fa-pull-right {
    margin-left: .3em;
    width: auto
}

.svg-inline--fa.fa-border {
    height: 1.5em
}

.svg-inline--fa.fa-li {
    width: 2em
}

.svg-inline--fa.fa-fw {
    width: 1.25em
}

.fa-layers svg.svg-inline--fa {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0
}

.fa-layers {
    display: inline-block;
    height: 1em;
    position: relative;
    text-align: center;
    vertical-align: -.125em;
    width: 1em
}

.fa-layers svg.svg-inline--fa {
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.fa-layers-counter,
.fa-layers-text {
    display: inline-block;
    position: absolute;
    text-align: center
}

.fa-layers-text {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.fa-layers-counter {
    background-color: #ff253a;
    border-radius: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    height: 1.5em;
    line-height: 1;
    max-width: 5em;
    min-width: 1.5em;
    overflow: hidden;
    padding: .25em;
    right: 0;
    text-overflow: ellipsis;
    top: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: top right;
    transform-origin: top right
}

.fa-layers-bottom-right {
    bottom: 0;
    right: 0;
    top: auto;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right
}

.fa-layers-bottom-left {
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left
}

.fa-layers-top-right {
    right: 0;
    top: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: top right;
    transform-origin: top right
}

.fa-layers-top-left {
    left: 0;
    right: auto;
    top: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: top left;
    transform-origin: top left
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: solid .08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1)
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    position: relative;
    width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0
}

.svg-inline--fa.fa-stack-1x {
    height: 1em;
    width: 1.25em
}

.svg-inline--fa.fa-stack-2x {
    height: 2em;
    width: 2.5em
}

.fa-inverse {
    color: #fff
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

.svg-inline--fa .fa-primary {
    fill: var(--fa-primary-color, currentColor);
    opacity: 1;
    opacity: var(--fa-primary-opacity, 1)
}

.svg-inline--fa .fa-secondary {
    fill: var(--fa-secondary-color, currentColor);
    opacity: .4;
    opacity: var(--fa-secondary-opacity, .4)
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
    opacity: .4;
    opacity: var(--fa-secondary-opacity, .4)
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
    opacity: 1;
    opacity: var(--fa-primary-opacity, 1)
}

.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
    fill: #000
}

.fad.fa-inverse {
    color: #fff
}

.knob-label {
    color: #fff
}

/* ============================================
   LIGHT MODE - ADDITIONAL OVERRIDES
   ============================================ */
.light-mode .knob-label {
    color: #2d3748;
}

.light-mode input,
.light-mode select {
    color: #2d3748;
}

.light-mode .info-box-text {
    color: #4a5568;
}

.light-mode .info-box-number {
    color: #2d3748;
}

.light-mode .info-box-ex {
    color: #718096;
}

.light-mode .box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2d3748;
}

.light-mode .box-body {
    color: #2d3748;
}

.light-mode .box-header {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%) !important;
    color: #2d3748 !important;
}

.light-mode .box-header .box-title {
    color: #2d3748 !important;
}

.light-mode .box-header .box-tools .btn {
    color: #4a5568 !important;
}

.light-mode .box-header .box-tools .btn:hover {
    color: #667eea !important;
}

.light-mode .box-primary > .box-header,
.light-mode .box-info > .box-header {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%) !important;
}

.light-mode .box-success > .box-header {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
}

.light-mode .box-warning > .box-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
}

.light-mode .box-danger > .box-header {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
}

.light-mode .table {
    color: #2d3748;
}

.light-mode .table > tbody > tr > td {
    color: #2d3748;
}

.light-mode .form-control {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2d3748;
}

.light-mode .form-control:focus {
    background-color: #ffffff;
    color: #2d3748;
}

.light-mode .form-control::placeholder {
    color: #a0aec0;
}

.light-mode input.form-control,
.light-mode textarea.form-control,
.light-mode select.form-control {
    color: #2d3748;
}

.light-mode label {
    color: #4a5568;
}

.light-mode .modal-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.light-mode .modal-body {
    color: #2d3748;
}

.light-mode .modal-body .form-control {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2d3748;
}

.light-mode .modal-body label {
    color: #4a5568;
}

.light-mode .modal-footer {
    border-top: 1px solid #e2e8f0;
}

.light-mode neo {
    color: #319795;
    text-shadow: none;
}

.light-mode err {
    color: #e53e3e;
    text-shadow: none;
}

.light-mode hr {
    border-color: #e2e8f0;
}

.light-mode select option {
    background-color: #ffffff;
    color: #2d3748;
}

.light-mode .dropdown-menu {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.light-mode .dropdown-menu > li > a {
    color: #4a5568;
}

.light-mode .dropdown-menu > li > a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.light-mode .pagination > li > a,
.light-mode .pagination > li > span {
    background-color: #ffffff;
    border-color: #e2e8f0;
    color: #4a5568;
}

.light-mode .tap-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.light-mode .edit {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #4a5568;
}

.light-mode .edit:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.light-mode p.item:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.light-mode .btn-app {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    color: #4a5568;
}

.light-mode .btn-app:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
}

/* Light Mode - Transition for smooth switching */
body,
.content-wrapper,
.main-sidebar,
.wrapper,
.box,
.modal-content,
.table,
.form-control,
.dropdown-menu,
.tap-box,
.nav-tabs-custom,
.info-box {
    transition: background 0.3s ease, 
                background-color 0.3s ease, 
                color 0.3s ease, 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}